.news-header {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    background: var(--on-background-color);
    border: 1px solid var(--border-color);
    align-items: center;
}

.news-header-img,
.news-header-img-fallback {
    width: 96px;
    height: 96px;
    border-radius: 10px;
    background: var(--background-color);
    border: 1px solid var(--border-color);
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

.news-header-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-header-img-fallback img {
    width: 48px;
    height: 48px;
    opacity: 0.85;
}

.news-header-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.news-header-date {
    font-size: 14px;
    opacity: 0.6;
}

.news-header-title {
    font-size: 20px;
    font-weight: 700;
}

.news-header-expanded {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.35;
}
